home *** CD-ROM | disk | FTP | other *** search
- /*
- Convert DCTV animation to 24 bit frames
- to be loaded into OV's AnimMake
- call Amiga Images BBS - (206)248-2125
- v32bis - (206)248-1514
-
- Edit as you'll need to, you're on your own!
- */
-
- options results
-
- address "ADPro"
-
- GETFILE '"DCTV Animation to convert"'
- FName = ADPRO_RESULT
-
- LFORMAT "ANIM"
- SFORMAT "IFF"
- LOAD FName COUNT
- FCount = ADPRO_RESULT
- do FileNum = 1 to FCount
- LOAD FName FRAME FileNum
- OPERATOR Rendered_To_Raw
- /* The next line is optional, but most DCTV animations are hi-res laced */
- OPERATOR Halve
- Name = 'RAM:Pic' || right('0000'||(FileNum),5)
- SAVE Name RAW
- end
-